From: | Javier de las Rivas |
Date: | 10 May 2001 at 20:42:03 |
Subject: | [D5] CDDA |
hi, just dl secondspin is a gui for mp3 encoding ok it's something
unstable, but i found 2 little progs thath maybe are useful.
CDDA & ShowTOC
the first one is a CDDA player and the 2nd is for listting the
TableOfContents of CDDA (tracks, time,....)
is it possible to redirect the ShowTOC to a Dopus lister then double
clicking on that track send the number of track to CDDA so it can be
reproduced??
don't know anything on DOpus-ARexx so maybe one ARexx-Programmer could do
it (it looks very easy, but...)
the command are 2 shell commands and can be aborted with Ctrl+C (CDDA
stops playing the track)
any ideas, sugestions
Maybe i'll try a little script for myself, but don't expect something clear
& well coded :-)
BYE
... later ....
Yujuuuuuuuuu!!!!! my first DO-ARexx script ;-)
----------------------
/*$VER: CDDA2.script 0.1 (10.05.01) Javier de las Rivas
SetEnv cdda_device blizzppc.device
SetEnv cdda_unit 2
*/
ADDRESS "DOPUS.1"
DOPUS REQUEST '"Choose CD track to play..." 1|2|3|4|5|6|7|8|9|Salir'
pista=RC
IF RC>0 THEN DO
DOPUS REQUEST '"Playing track '||pista||'" Cancel'
ADDRESS COMMAND 'DH2:MUSICA/cdda PLAN=a TRACK='pista
END
EXIT 0
------------------------------
Well that's what i've done until now, what i want is if i click on CANCEL i
want to send a Ctrl+C or something similar to stop CD playing.
And i can only play 9 tracks don't know how to scan CD track and then pop
a DO requester (or lister) and choose from one of the track the CD has.
more ideas suggestions???
THX